All Questions
8 questions
2votes
2answers
2kviews
Cost calculator for room bookings, based on file or user input
The application I would like help with is a booking calculation tool that runs a few simple calculations in order to work out the cost of someone's stay. It currently contains only two java files, ...
23votes
3answers
3kviews
Parsing log files of HearthStone: The log reading API
I'm still working on a parser that can parse log entries from a game called HearthStone, the overall idea is that it will read the log file live when the game is running, parses the log file and show ...
6votes
2answers
214views
Extensible Abstract Log Reader
My goal with the following code is to provide an extensible class that can be extended in order to read log files and transforms them into meaningful output. I'd like to have comments about the code ...
1vote
2answers
5kviews
Reading columns of a delimited text file
This class reads a delimited text file into String arrays on demand. Delimiter can be any regex. Features include: Read a single column Read a range of columns Read arbitrary columns by providing an ...
0votes
1answer
1kviews
2votes
1answer
63views
A Java class for reading MaCH dosage files v2.0
Version 2 of A Java class for reading MaCH dosage files ...
3votes
1answer
100views
A Java class for reading MaCH dosage files
A dosage file (used in computational genetics) is formatted like this: ...
7votes
2answers
2kviews
Speed up CSV reading code (vector of doubles)
I am trying to read a single-columned CSV of doubles into Java with a string header. It is 11 megabytes and takes over 15 minutes to read, which is clearly ...